home *** CD-ROM | disk | FTP | other *** search
/ Clickx 115 / Clickx 115.iso / software / tools / windows / tails-i386-0.16.iso / live / filesystem.squashfs / usr / bin / tails-create-iuk < prev    next >
Encoding:
Text File  |  2012-11-13  |  386 b   |  28 lines

  1. #!/usr/bin/perl 
  2.  
  3. eval 'exec /usr/bin/perl  -S $0 ${1+"$@"}'
  4.     if 0; # not running under some shell
  5.  
  6. =head1 NAME
  7.  
  8. tails-create-iuk - create an Incremental Upgrade Kit
  9.  
  10. =head1 VERSION
  11.  
  12. Version 0.3.7
  13.  
  14. =cut
  15.  
  16. use strict;
  17. use warnings FATAL => 'all';
  18. use 5.10.1;
  19.  
  20. our $VERSION = '0.3.7';
  21.  
  22. use FindBin;
  23. use lib "$FindBin::Bin/../lib";
  24.  
  25. use Tails::IUK;
  26.  
  27. Tails::IUK->new_with_options()->run;
  28.